@charset "utf-8";

/*通用*/

body {
	background: url(../images/index/bg.jpg) top center no-repeat;
	background-size: 100% 100%;
}


/*头部*/

.logo {
	padding: 90px 0 30px 0;
	position: relative;
}

.logo img {
	max-width: 100%;
	vertical-align: bottom;
}


/*地州切换*/

#prefecture {
	color: #fff;
	padding-left: 15px;
}

#prefecture-list {
	text-align: left;
	position: absolute;
	z-index: 999;
	width: 100%;
	background: #fff;
	bottom: -85px;
	padding: 15px 15px 0 15px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

#prefecture-list ul li {
	display: inline-block;
	font-size: 1.4rem;
	padding-right: 20px;
}
#prefecture-list ul li:last-child{
	padding: 0;
}
#prefecture-list ul li a {
	color: #000;
}

#prefecture-list ul li a:hover {
	color: #6ac2ea;
}

#prefecture-list ul li:first-child {
	text-align: right;
	color: #0385c3;
	width: 4em;
	padding: 0;
}


/*主体外框*/

.am-content-box {
	background: rgba(255, 255, 255, .5);
	border-radius: 5px;
	padding: 50px 30px;
	border: #fff solid 1px;
	box-shadow: 0 0 20px #fff;
}


/*迷你导航*/

.mini-nav ul {
	padding: 0;
}

.mini-nav li {
	position: relative;
	display: inline-block;
	background: #6f7273;
	color: #fff;
	padding: 0 15px;
	border-radius: 3px;
	z-index: 1;
}

.mini-nav li:first-child.on {
	margin-left: 0;
}

.mini-nav li:first-child.on:after {
	display: none;
}

.mini-nav li.on {
	margin-left: -3px;
	background: #256dac;
	z-index: 0;
}

.mini-nav li:before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-width: 12px 0 12px 9px;
	border-style: solid;
	border-color: transparent transparent transparent #6f7273;
	position: absolute;
	top: 0;
	right: -8px;
}

.mini-nav li.on:before {
	border-color: transparent transparent transparent #256dac;
}

.mini-nav li.on:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-width: 12px 0 12px 9px;
	border-style: solid;
	border-color: transparent transparent transparent #fff;
	position: absolute;
	top: 0;
	left: 0;
}


/*侧边栏*/

#doc-demo .am-list>li {
	background: none;
	text-indent: 1em;
}

#doc-demo .am-list>li:first-child {
	border-top: none;
}


/*右侧内容外框间距*/

.content-box {
	padding: 20px 30px;
}


/*必填星号*/

.am-required:after {
	content: '*';
	color: red;
	position: absolute;
	top: 3px;
}


/*必填提示*/

.am-form-tips {
	color: #cf1717;
}


/*页尾*/

footer {
	padding: 2em 0 !important;
}

footer p {
	color: #fff;
	margin: 0;
}


/*电脑适配*/

@media only screen and (min-width: 1025px) {
	.no-padding-left {
		padding-left: 0px !important;
	}
	.no-padding-right {
		padding-right: 0px !important;
	}
}

@media only screen and (max-width: 640px) {
	/*头部*/
	.logo {
		padding: 1em 0;
	}
	#prefecture-list {
		bottom: auto;
	}
	/*主体外框*/
	.am-content-box {
		background: none;
		border-radius: 0;
		padding: 0;
		border: none;
		box-shadow: none;
	}
	/*右侧内容外框间距*/
	.content-box {
		padding: 5px;
	}
	/*页尾*/
	footer {
		padding: 1em 0 !important;
	}
}